Skip to content

Notification class

Defined in

Namespace: System.Reactive Assembly: System.Reactive.dll Full name: System.Reactive.Notification<T> Modifiers: public abstract

Summary

        Represents a notification to an observer.
        

Applies to

netstandard2.0

Class hierarchy
classDiagram
class Notification~T~
class IEquatable~Notification~T~~ {
    <>
}
IEquatable~Notification~T~~ <|.. Notification~T~

Implements: IEquatable>

Constructors

NameSummary
.ctorDefault constructor used by derived types.

Properties

NameSummary
ValueReturns the value of an OnNext notification or throws an exception.
HasValueReturns a value that indicates whether the notification has a value.
ExceptionReturns the exception of an OnError notification or returns null.
KindGets the kind of notification that is represented.

Methods

NameSummary
EqualsDetermines whether the current [Notification](# object has the same observer message payload as a specified [Notification](# value.
AcceptInvokes the observer's method corresponding to the notification.
ToObservableReturns an observable sequence with a single notification, using the immediate scheduler.

Operators

NameSummary
static op_EqualityDetermines whether the two specified [Notification](# objects have the same observer message payload.
static op_InequalityDetermines whether the two specified [Notification](# objects have a different observer message payload.
Inherited members